ImageGear .NET v25.2 - Updated
ImageGear.Windows.Controls Assembly / ImageGear.Windows.Controls Namespace / ImGearFunc<TParam,TResult> Delegate
The type of the parameter of the method that this delegate encapsulates.
The type of the return value of the method that this delegate encapsulates.
The parameter of the method that this delegate encapsulates.




In This Topic
    ImGearFunc<TParam,TResult> Delegate
    In This Topic
    Encapsulates a method that has one parameter and returns a value of the type specified by the TResult parameter.
    Syntax
    'Declaration
     
    Public Delegate Function ImGearFunc
        (Of TParam,TResult)( _
       ByVal p As TParam _
    ) As TResult
    'Usage
     
    Dim instance As New ImGearFunc(Of TParam,TResult)(AddressOf HandlerMethod)
    public delegate TResult ImGearFunc<TParam,TResult>( 
       TParam p
    )
    public: __gc __delegate TResult* ImGearFunc<TParam,TResult>( 
       TParam* p
    )
    generic<typename TParam>
    generic<typename TResult>
    public delegate TResult^ ImGearFunc( 
       TParam^ p
    )

    Parameters

    p
    The parameter of the method that this delegate encapsulates.

    Type Parameters

    TParam
    The type of the parameter of the method that this delegate encapsulates.
    TResult
    The type of the return value of the method that this delegate encapsulates.

    Return Value

    The return value of the method that this delegate encapsulates.
    See Also